Use of process.exit() is discouraged as it will potentially stop the complete node.js application. Consider quitting gracefully instead by throwing an Error.
Loading history...
12
process.on ('unhandledRejection', e => { log.bright.red.error (e); process.exit (1) })
Use of process.exit() is discouraged as it will potentially stop the complete node.js application. Consider quitting gracefully instead by throwing an Error.
Loading history...
13
14
let exchanges = {}
15
16
ccxt.exchanges.forEach (id => { exchanges[id] = new (ccxt)[id] () })